body {
    background-color: var(--green);
}

.nb-container {
    padding: var(--default-padding);
    display: flex;
    flex-direction: column;
}

.nb-title {
    font-family: 'Roboto', sans-serif;
    font-size: var(--heading);
    color: white;
    text-align: center;
    width: 80%;
    margin-top: 120px;
    margin: 0 auto;
}

.nb-writers {
    font-family: 'Roboto', sans-serif;
    font-size: var(--sectors-body-font-size);
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.text-section > p {
    font-family: 'Roboto', sans-serif;
    font-size: var(--sectors-body-font-size);
    color: white;
    
}

.text-section > p::after {
    content: '.';
    user-select: none;
    display: block;
    color: transparent;
}

.pic-section {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-bottom: 1rem;
    justify-content: center;
    align-items: center;
}

.pic-section > img {
    flex: 0 1 auto;
}

.pic-section.one-pic > img{
    width: 80%;
}

.pic-section.two-pics > img{
    width:49%;
}

.pic-section.three-pics > img{
    width: 32%;
}

.pic-section.two-pics{
    gap: 2%;
}

.pic-section.three-pics{
    gap: 2%;
}

@media screen and (max-width: 600px) {

    .pic-section.one-pic > img, 
    .pic-section.two-pics > img, 
    .pic-section.three-pics > img {
        width: 100%;
    }
    .pic-section.two-pics, 
    .pic-section.three-pics {
        flex-direction: column !important;
        gap: .4rem;
    }
}



